From 92421f96f68e7dd4d1295f74d6f785b874377f1b Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 3 Jul 2007 16:53:17 +0000 Subject: [PATCH] Implement. Just return FALSE for now. What should this function actually 2007-07-03 Tor Lillqvist * gdk/win32/gdkkeys-win32.c (gdk_keymap_have_bidi_layouts): Implement. Just return FALSE for now. What should this function actually do? Does keyboards layouts being "in use" mean that such layouts can be switched to on the fly? If so we need to actually check that. svn path=/trunk/; revision=18359 --- ChangeLog | 8 ++++++++ gdk/win32/gdkkeys-win32.c | 10 ++++++++++ 2 files changed, 18 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5d1d5e4590..6317e82211 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-07-03 Tor Lillqvist + + * gdk/win32/gdkkeys-win32.c (gdk_keymap_have_bidi_layouts): + Implement. Just return FALSE for now. What should this function + actually do? Does keyboards layouts being "in use" mean that such + layouts can be switched to on the fly? If so we need to actually + check that. + 2007-07-03 Tristan Van Berkom * gtk/gtkwidget.c: Fixed assertions from setting "tooltip-text" to NULL diff --git a/gdk/win32/gdkkeys-win32.c b/gdk/win32/gdkkeys-win32.c index 6bb11054fc..f2bdae970e 100644 --- a/gdk/win32/gdkkeys-win32.c +++ b/gdk/win32/gdkkeys-win32.c @@ -526,6 +526,16 @@ gdk_keymap_get_direction (GdkKeymap *keymap) } } +gboolean +gdk_keymap_have_bidi_layouts (GdkKeymap *keymap) +{ + /* Should we check if the kayboard layouts switchable at the moment + * cover both directionalities? What does the doc comment in + * ../x11/gdkkeys-x11.c exactly mean? + */ + return FALSE; +} + gboolean gdk_keymap_get_entries_for_keyval (GdkKeymap *keymap, guint keyval, -- 2.30.2